Early Preview

This is currently very much a preview. Please feel free to try things out, but don't be upset if anything is not yet working. Feedback is welcome over on our GitHub Dicussions page.

interface Microsoft.​Extensions.​Options.​IPostConfigureOptions<​TOptions>

Assembly: Microsoft.Extensions.Options

Represents something that configures the <typeparamref name="TOptions" /> type.

Remarks

These are run after all <see cref="T:Microsoft.Extensions.Options.IConfigureOptions`1" /> .

Methods

void
PostConfigure​(string name, TOptions options)
Configures a <typeparamref name="TOptions" /> instance.
name The name of the options instance being configured.
options The options instance to configured.